home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
PowerD
/
powerd
/
source
/
lib
/
powerd_lib.lha
/
PowerD_PPC
/
CStrCmp.c
< prev
next >
Wrap
Text File
|
1980-05-18
|
204b
|
14 lines
int CStrCmp(const char *s1,const char *s2)
{
const unsigned char *p1=s1,*p2=s2;
unsigned long r,c;
c=0;
do
{
r=*p1++;
c=*p2++;
} while (!(r-=c) && (unsigned char)c);
return r;
}